home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / exampleCode / opengl / 2Dwrap / igl / Makefile < prev   
Makefile  |  1996-11-11  |  396b  |  24 lines

  1. #!smake
  2.  
  3. include $(ROOT)/usr/include/make/commondefs
  4.  
  5. # debugging option
  6. LCOPTS = -g
  7. #OPTIMIZER= -O2
  8.  
  9. LLDLIBS    = -lgl
  10. # override the prototypes macro in commondefs:  if you want
  11. # prototyping turned on, comment out the next line.
  12. PROTOTYPES=
  13.  
  14. CFILES    = main.c
  15.  
  16. TARGETS = igl2Dwrap
  17.  
  18. default all:$(TARGETS)
  19.  
  20. include $(COMMONRULES)
  21.  
  22. $(TARGETS): $(OBJECTS) 
  23.     $(CCF) $(OBJECTS) $(LDFLAGS) -o $(TARGETS)
  24.